- ggplot(data.frame, aes(column_name))
- geom_something(arguments, aes(column_name))
- theme_something() style
- Customization of axes and legends
- Two links to learn more.
library(tidyverse)
data("diamonds")
ggplot(diamonds, aes(x = carat, y = price)) + geom_point(aes(color = cut)) +
theme_bw()